home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
Software
/
TemaCD
/
RCEdit
/
RCEdit.CAB
/
Status Message.js
< prev
next >
Wrap
Text File
|
1998-06-05
|
380b
|
20 lines
// declare timer variable for conditional compare
myID_stat = null;
// Clear window stat messages after x seconds
function clearstat() {
window.status="";
}
// Display stat message
function statmsg(txt) {
if (myID_stat != null)
{
clearTimeout(myID_stat);
}
window.status = txt;
myID_stat = setTimeout("clearstat()",1500);
return true;
}